home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLO
- ; This file demonstrates the usage of the Res+ , Res- , Center, Res-Lock,
- ; Res-UnLock, Res, Res-Up and Res-Down functions.
- ;
- ; Each picture will load with a resolution higher than the previous one until
- ; the maximum resolution is reached! After the last file is displayed the
- ; files are then displayed in reverse order with the resolution going down.
- ;
- ; NOTE: In the first pass where the files are displayed with increasing
- ; resolution, each picture is increased in resolution on the screen a
- ; couple of times, and then decreased a couple of resolutions. Then
- ; finally the picture is centered, before continuing on.
- ;
- change-path *.gif
- res 1
- res-lock
- :loop
- loadnext :next
- res+
- res+
- res-
- res-
- center
- res-up
- goto :loop
- :next
- loadprev :exit
- res-down
- goto :next
- :exit